next
Round
Technologies
Coding Problems
Bookmarks
Learning Paths
Login
next
Round
Technologies
Coding Problems
Bookmarks
Learning Paths
Login
</>
Loading Topics...
1
Design a semantic search system that must support 500 million documents with sub-100ms p99 latency. What are the key architectural decisions?
Expert
High
2
How would you plan capacity (RAM, disk, CPU, node count) for a collection of a given size, vector dimensionality, and expected QPS?
Expert
High
3
What architectural changes would you make to support near-real-time search over data that changes thousands of times per second (e.g., a live feed)?
Expert
High
4
How would you design a system that needs to support both 'search the last 24 hours' and 'search all history' with very different latency expectations?
Expert
High
5
What role does caching play in a Qdrant-backed search system, and at what layers would you introduce it?
Expert
High
6
How would you decide the initial number of shards for a new collection when the eventual data size is uncertain?
Expert
High
7
What is the relationship between shard count and query fan-out cost, and why doesn't 'more shards' always mean 'faster'?
Expert
High
8
How many replicas would you configure for a shard serving a mission-critical, read-heavy workload, and what does each additional replica cost you?
Expert
High
9
What operational steps are involved in adding a new node to an existing Qdrant cluster and rebalancing shards onto it?
Expert
High
10
How does Qdrant's architecture and target use case differ from Pinecone's as a fully managed, closed-source vector database?
Expert
High
11
When would you choose pgvector inside an existing Postgres database over a dedicated vector database like Qdrant?
Expert
High
12
What distinguishes Qdrant from Weaviate and Milvus at a conceptual level, and what would make you choose one over the others for a given project?
Expert
High
13
Under what circumstances would a team be justified in NOT using a vector database at all, and instead using brute-force search or a traditional search engine?
Expert
High
14
What is your target Recovery Point Objective (RPO) and Recovery Time Objective (RTO) for a Qdrant deployment, and how do snapshot frequency and replication factor influence each?
Expert
High
15
How would you design a disaster-recovery strategy that survives the loss of an entire cloud region?
Expert
High
16
What is the operational difference between a rolling upgrade of a replicated cluster and an in-place upgrade of a single-node deployment?
Expert
High
17
How would you validate that a newly restored cluster from snapshots is actually healthy and serving correct results before routing production traffic to it?
Expert
High
All Topics
1
Getting started
0/2 topics · 0%
Core Concepts
Setup and Basic Use
2
Querying vectors
0/3 topics · 0%
QueryAPIs
Named Vectors and Multitenancy
Sparse Vectors and Hybrid Search
3
Internals
0/3 topics · 0%
Snapshots and Backups
Indexing Internals
Internal Architecture
4
Operations & scale
0/3 topics · 0%
Performance and Optimisation
Security
System Design and Scalability
5
Practice
0/5 topics · 0%
Error Handling and Debugging
Testing
Design Patterns
Implementation Scenarios
Edge Cases